home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE21 / HTMLVIEW / HTMLVIEW.ZIP / DEMOSRC.ZIP / HTMLDEMO.DPR < prev    next >
Encoding:
Text File  |  1996-11-26  |  397 b   |  18 lines

  1. {$M 24000, 8192}   {Default stack size may be too small}
  2. program HTMLDemo;
  3.  
  4. uses
  5.   Forms,
  6.   demounit in 'DEMOUNIT.PAS' {Form1},
  7.   Submit in 'SUBMIT.PAS' {SubmitForm},
  8.   Fontdlg in 'FONTDLG.PAS' {FontForm},
  9.   Htmlabt in 'HTMLABT.PAS' {AboutBox};
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.CreateForm(TSubmitForm, SubmitForm);
  16.   Application.Run;
  17. end.
  18.